home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / smp.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  4KB  |  149 lines

  1. #ifndef __LINUX_SMP_H
  2. #define __LINUX_SMP_H
  3.  
  4. /*
  5.  *    Generic SMP support
  6.  *        Alan Cox. <alan@redhat.com>
  7.  */
  8.  
  9.  
  10. #ifdef __KERNEL__
  11. #include <linux/config.h>
  12.  
  13. extern void cpu_idle(void);
  14.  
  15. #ifdef CONFIG_SMP
  16.  
  17. #include <linux/preempt.h>
  18. #include <linux/kernel.h>
  19. #include <linux/compiler.h>
  20. #include <linux/thread_info.h>
  21. #include <asm/smp.h>
  22. #include <asm/bug.h>
  23.  
  24. /*
  25.  * main cross-CPU interfaces, handles INIT, TLB flush, STOP, etc.
  26.  * (defined in asm header):
  27.  */ 
  28.  
  29. /*
  30.  * stops all CPUs but the current one:
  31.  */
  32. extern void smp_send_stop(void);
  33.  
  34. /*
  35.  * sends a 'reschedule' event to another CPU:
  36.  */
  37. extern void smp_send_reschedule(int cpu);
  38.  
  39.  
  40. /*
  41.  * Prepare machine for booting other CPUs.
  42.  */
  43. extern void smp_prepare_cpus(unsigned int max_cpus);
  44.  
  45. /*
  46.  * Bring a CPU up
  47.  */
  48. extern int __cpu_up(unsigned int cpunum);
  49.  
  50. /*
  51.  * Final polishing of CPUs
  52.  */
  53. extern void smp_cpus_done(unsigned int max_cpus);
  54.  
  55. /*
  56.  * Call a function on all other processors
  57.  */
  58. extern int smp_call_function (void (*func) (void *info), void *info,
  59.                   int retry, int wait);
  60.  
  61. /*
  62.  * Call a function on all processors
  63.  */
  64. static inline int on_each_cpu(void (*func) (void *info), void *info,
  65.                   int retry, int wait)
  66. {
  67.     int ret = 0;
  68.  
  69.     preempt_disable();
  70.     ret = smp_call_function(func, info, retry, wait);
  71.     func(info);
  72.     preempt_enable();
  73.     return ret;
  74. }
  75.  
  76. /*
  77.  * True once the per process idle is forked
  78.  */
  79. extern int smp_threads_ready;
  80.  
  81. #define MSG_ALL_BUT_SELF    0x8000    /* Assume <32768 CPU's */
  82. #define MSG_ALL            0x8001
  83.  
  84. #define MSG_INVALIDATE_TLB    0x0001    /* Remote processor TLB invalidate */
  85. #define MSG_STOP_CPU        0x0002    /* Sent to shut down slave CPU's
  86.                      * when rebooting
  87.                      */
  88. #define MSG_RESCHEDULE        0x0003    /* Reschedule request from master CPU*/
  89. #define MSG_CALL_FUNCTION       0x0004  /* Call function on all other CPUs */
  90.  
  91. /*
  92.  * Mark the boot cpu "online" so that it can call console drivers in
  93.  * printk() and can access its per-cpu storage.
  94.  */
  95. void smp_prepare_boot_cpu(void);
  96.  
  97. #else /* !SMP */
  98.  
  99. /*
  100.  *    These macros fold the SMP functionality into a single CPU system
  101.  */
  102.  
  103. #if !defined(__smp_processor_id) || !defined(CONFIG_PREEMPT)
  104. # define smp_processor_id()            0
  105. #endif
  106. #define hard_smp_processor_id()            0
  107. #define smp_threads_ready            1
  108. #define smp_call_function(func,info,retry,wait)    ({ 0; })
  109. #define on_each_cpu(func,info,retry,wait)    ({ func(info); 0; })
  110. static inline void smp_send_reschedule(int cpu) { }
  111. #define num_booting_cpus()            1
  112. #define smp_prepare_boot_cpu()            do {} while (0)
  113.  
  114. #endif /* !SMP */
  115.  
  116. /*
  117.  * DEBUG_PREEMPT support: check whether smp_processor_id() is being
  118.  * used in a preemption-safe way.
  119.  *
  120.  * An architecture has to enable this debugging code explicitly.
  121.  * It can do so by renaming the smp_processor_id() macro to
  122.  * __smp_processor_id().  This should only be done after some minimal
  123.  * testing, because usually there are a number of false positives
  124.  * that an architecture will trigger.
  125.  *
  126.  * To fix a false positive (i.e. smp_processor_id() use that the
  127.  * debugging code reports but which use for some reason is legal),
  128.  * change the smp_processor_id() reference to _smp_processor_id(),
  129.  * which is the nondebug variant.  NOTE: don't use this to hack around
  130.  * real bugs.
  131.  */
  132. #ifdef __smp_processor_id
  133. # if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
  134.    extern unsigned int smp_processor_id(void);
  135. # else
  136. #  define smp_processor_id() __smp_processor_id()
  137. # endif
  138. # define _smp_processor_id() __smp_processor_id()
  139. #else
  140. # define _smp_processor_id() smp_processor_id()
  141. #endif
  142.  
  143. #define get_cpu()        ({ preempt_disable(); smp_processor_id(); })
  144. #define put_cpu()        preempt_enable()
  145. #define put_cpu_no_resched()    preempt_enable_no_resched()
  146.  
  147. #endif /* __KERNEL__ */
  148. #endif /* __LINUX_SMP_H */
  149.